home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Apr / di9804gk / d1form.PAS < prev    next >
Pascal/Delphi Source File  |  1997-06-03  |  514b  |  33 lines

  1. unit D1form;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, fmminmax;
  8.  
  9. type
  10.   TForm1 = class(TMinMaxForm)
  11.     procedure FormCreate(Sender: TObject);
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   Form1: TForm1;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. procedure TForm1.FormCreate(Sender: TObject);
  26. begin
  27.   ResizeMaxHeight := 200;
  28.   ResizeMinWidth := 400;
  29.   ResizeMinHeight := 100;
  30. end;
  31.  
  32. end.
  33.